Gram Matrix
Given a convolutional layer with dimensions d x h x w = (20*8*8), what length will one row of the vectorized convolutional layer have? (Vectorized means that the spatial dimensions are flattened.)
d x h x w = (20*8*8)
16
20
32
40
64
Given a convolutional layer with dimensions d x h x w = (20*8*8), what dimensions (h x w) will the resultant Gram matrix have?
(8 x 8)
(10 x 10)
(20 x 8)
(20 x 20)
Next Concept